home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}#1.1#0"; "SHDOCVW.DLL"
- Begin VB.Form Form6
- Caption = "Web Browser"
- ClientHeight = 7470
- ClientLeft = 735
- ClientTop = 795
- ClientWidth = 10230
- LinkTopic = "Form6"
- MaxButton = 0 'False
- ScaleHeight = 7470
- ScaleWidth = 10230
- Begin VB.CommandButton Command7
- Caption = "S&earch"
- Height = 975
- Left = 5520
- TabIndex = 9
- Top = 120
- Width = 975
- End
- Begin VB.CommandButton Command6
- Caption = "&Stop"
- Height = 975
- Left = 4440
- TabIndex = 8
- Top = 120
- Width = 975
- End
- Begin VB.CommandButton Command5
- Caption = "&Home"
- Height = 975
- Left = 3360
- TabIndex = 7
- Top = 120
- Width = 975
- End
- Begin VB.CommandButton Command4
- Caption = "&Refresh"
- Height = 975
- Left = 2280
- TabIndex = 6
- Top = 120
- Width = 975
- End
- Begin VB.CommandButton Command3
- Caption = "&Forward"
- Height = 975
- Left = 1200
- TabIndex = 5
- Top = 120
- Width = 975
- End
- Begin VB.CommandButton Command2
- Caption = "&Back"
- Height = 975
- Left = 120
- TabIndex = 4
- Top = 120
- Width = 975
- End
- Begin SHDocVwCtl.WebBrowser WebBrowser1
- Height = 5175
- Left = 120
- TabIndex = 2
- Top = 1680
- Width = 9975
- ExtentX = 17595
- ExtentY = 9128
- ViewMode = 0
- Offline = 0
- Silent = 0
- RegisterAsBrowser= 0
- RegisterAsDropTarget= 1
- AutoArrange = 0 'False
- NoClientEdge = 0 'False
- AlignLeft = 0 'False
- ViewID = "{0057D0E0-3573-11CF-AE69-08002B2E1262}"
- Location = ""
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 840
- TabIndex = 1
- Text = "http://www.angelfire.com/me/Shaun101"
- Top = 1200
- Width = 9255
- End
- Begin VB.CommandButton Command1
- Caption = "&Go"
- Height = 255
- Left = 120
- TabIndex = 0
- Top = 1200
- Width = 615
- End
- Begin VB.Line Line1
- X1 = 0
- X2 = 10200
- Y1 = 1560
- Y2 = 1560
- End
- Begin VB.Label Label1
- Height = 255
- Left = 120
- TabIndex = 3
- Top = 7080
- Width = 9975
- End
- Attribute VB_Name = "Form6"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- WebBrowser1.Navigate Text1
- End Sub
- Private Sub Command2_Click()
- WebBrowser1.GoBack
- End Sub
- Private Sub Command3_Click()
- WebBrowser1.GoForward
- End Sub
- Private Sub Command4_Click()
- WebBrowser1.Refresh
- End Sub
- Private Sub Command5_Click()
- WebBrowser1.GoHome
- End Sub
- Private Sub Command6_Click()
- WebBrowser1.Stop
- End Sub
- Private Sub Command7_Click()
- WebBrowser1.GoSearch
- End Sub
- Private Sub Form_Load()
- WebBrowser1.Navigate Text1
- End Sub
- Private Sub Text1_Change()
- Text1.SetFocus
- End Sub
- Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)
- If WebBrowser1.Busy Then
- Label1.Caption = "You Are Now Connecting to " + Text1.Text
- Else
- Label1.Caption = ""
- End If
- End Sub
-